projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f4d368
)
Tweak implementation of byte-compile-info-message
author
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 18 Jun 2019 08:36:06 +0000
(10:36 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 18 Jun 2019 08:36:14 +0000
(10:36 +0200)
* lisp/emacs-lisp/byte-run.el (byte-compile-info-message): Clean
up implementation.
lisp/emacs-lisp/byte-run.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/byte-run.el
b/lisp/emacs-lisp/byte-run.el
index 30a9f984793c3dd2ebef5efb5cb7c2889e90057d..96cff2ebeb26a034005b56119ccd9e18cef28420 100644
(file)
--- a/
lisp/emacs-lisp/byte-run.el
+++ b/
lisp/emacs-lisp/byte-run.el
@@
-542,7
+542,7
@@
Otherwise, return nil. For internal use only."
(defun byte-compile-info-message (&rest args)
"Message format ARGS in a way that looks pleasing in the compilation output."
- (message "
%s" (concat " INFO " (apply #'format args)
)))
+ (message "
%-9s%s" "INFO" (apply #'format args
)))
\f
;; I nuked this because it's not a good idea for users to think of using it.